Class WebViewManagerImpl

java.lang.Object
com.cisco.pt.ipc.impl.IPCObjectImpl
com.cisco.pt.ipc.ui.impl.WebViewManagerImpl
All Implemented Interfaces:
IPCObject, WebViewManager

public class WebViewManagerImpl extends IPCObjectImpl implements WebViewManager
Information provided by the PKI file:

    \class WebViewManager
    
    \brief WebViewManager manages all WebViews.
    
    \example appWindow().getWebViewManager()
    
Author:
Auto-generated
  • Constructor Details

  • Method Details

    • createWebView

      public WebView createWebView(String title, String url, int width, int height)
      Information provided by the PKI file:
      
          \brief Creates a WebView.
          
          \param title, the title for the WebView.
          \param url, the URL for the WebView.
          \param width, the width for the WebView.
          \param height, the height for the WebView.
          
          \return WebView, the WebView object that is created.
          
              
      Specified by:
      createWebView in interface WebViewManager
      Parameters:
      title - Takes in a parameter of title
      url - Takes in a parameter of url
      width - Takes in a parameter of width
      height - Takes in a parameter of height
      Returns:
      WebView Returns a WebView
    • getWebView

      public WebView getWebView(UUID id)
      Information provided by the PKI file:
      
          \brief Returns the WebView with the specified UUID.
          
          \param id, the UUID of the WebView of interest.
          
          \return WebView, the WebView object with the specified UUID.
          
              
      Specified by:
      getWebView in interface WebViewManager
      Parameters:
      id - Takes in a parameter of id
      Returns:
      WebView Returns a WebView
    • closeWebView

      public boolean closeWebView(UUID id)
      Information provided by the PKI file:
      
          \brief Closes the WebView with the specified UUID.
          
          \param id, the UUID of the WebView of interest.
          
          \return bool, true if successful, otherwise false.
          
              
      Specified by:
      closeWebView in interface WebViewManager
      Parameters:
      id - Takes in a parameter of id
      Returns:
      boolean Returns a boolean
    • closeAll

      public void closeAll()
      Information provided by the PKI file:
      
          \brief Closes all WebViews.
          
              
      Specified by:
      closeAll in interface WebViewManager